01ab15ccd479411687a93bf1a71ca6a4d164b679,src/frontend/org/voltdb/messaging/InitiateResponseMessage.java,InitiateResponseMessage,flattenToBuffer,#ByteBuffer#,197
Before Change
buf.put((byte) (m_recovering == true ? 1 : 0));
buf.put((byte) (m_mispartitioned == true ? 1 : 0));
if (m_mispartitioned) {
m_invocation.flattenToBuffer(buf);
} else {
m_response.flattenToBuffer(buf);
}
After Change
buf.put((byte) (m_recovering == true ? 1 : 0));
buf.put((byte) (m_mispartitioned == true ? 1 : 0));
if (m_mispartitioned) {
m_invocation.flattenToBuffer(buf);
buf.putLong(m_currentHashinatorConfig.getFirst());
buf.putInt(m_currentHashinatorConfig.getSecond().length);
buf.put(m_currentHashinatorConfig.getSecond());